home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / tour.dxr / 00426_Navigation code.ls < prev    next >
Encoding:
Text File  |  2000-01-21  |  201 b   |  10 lines

  1. on MakeLabelList
  2.   xText = the labelList
  3.   xList = []
  4.   MaxCount = the number of lines in xText - 1
  5.   repeat with rc = 1 to MaxCount
  6.     append(xList, line rc of xText)
  7.   end repeat
  8.   return xList
  9. end
  10.